home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000169_news@columbia.edu _Sat Apr 1 13:35:14 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA13610
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 1 Apr 2000 13:35:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id NAA09127
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 1 Apr 2000 13:31:39 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: How to get Kermit to cooperate with Minicom
  11. Date: 1 Apr 2000 18:31:37 GMT
  12. Organization: Columbia University
  13. Message-ID: <8c5fa9$8t5$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <38E52FCD.24263B60@NOSPAMhotmail.com>,
  17. Dan  <dmanon@NOSPAMhotmail.com> wrote:
  18. : Am trying Kermit out but I cannot get it to cooperate with Minicom.
  19. : Kermit keeps exiting because it senses the lockfile put on my modem by
  20. : Minicom.  How can I get the 2 to co-exist so I can use kermit to recieve
  21. : files from my remote host?
  22. First of all, you don't have to use Minicom at all.  If you let Kermit
  23. handle the entire process from dialing out to hanging up, there will be no
  24. conflicts.
  25.  
  26. If you give Kermit the name of a serial device (like /dev/ttyS1), it tries
  27. to open it, which in Unix includes creating a UUCP lockfile.  If another
  28. process has the device open, Kermit can't create the lock so the open
  29. fails.  That's how Unix dialout programs have to work.
  30.  
  31. But if all you want to do is invoke Kermit as an external file transfer
  32. protocol, then you should be able to do this simply by not specifying the
  33. dialout device or serial speed ("baud rate"), and choosing "IO-Red",
  34. meaning "minicom should attach the program's standard in and output to the
  35. modem port."
  36.  
  37. By the way, you might find that G-Kermit:
  38.  
  39.   http://www.columbia.edu/kermit/gkermit.html
  40.  
  41. makes a better external Kermit protocol than C-Kermit.
  42.  
  43. - Frank